f89eaa5d5a2b0bf158a0f73ba270418794cb80bc,portal-impl/src/com/liferay/portal/tools/PluginsEnvironmentBuilder.java,PluginsEnvironmentBuilder,_exec,#String#,383
Before Change
}
private String[] _exec(String cmd) throws Exception {
Process process = Runtime.getRuntime().exec(cmd);
String[] stdout = _getExecOutput(process.getInputStream());
String[] stderr = _getExecOutput(process.getErrorStream());
After Change
}
private String[] _exec(String cmd) throws Exception {
Runtime runtime = Runtime.getRuntime();
Process process = runtime.exec(cmd);
String[] stdout = _getExecOutput(process.getInputStream());
String[] stderr = _getExecOutput(process.getErrorStream());